home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 001a / cspsetup.zip / NOCHANGE.TXT < prev    next >
Text File  |  1991-04-20  |  2KB  |  75 lines

  1.    From : Joe Adamson
  2.      To : Marc Teitler
  3. Subject : CCSP External Compression Protocol
  4. -------------------------------------------------------------------------------
  5. CSP-3 Protocol Templates for Oklahoma Nochange 7.6 - 8.0
  6.  
  7. * Initialize the protocol engine (see docs) in your STARTUP.INF file, or
  8. add it to both of the template files if you have irregular use, after the
  9. @ECHO OFF statement.
  10.  
  11. * Remember to add the <P> to your prompt line in UPDOWN.ext, or add the
  12. selection of the CSP-3 protocol to your PROTOCOL.DAT so that your callers
  13. will know they have the option, depending on your revision.  You may, of
  14. course, redesignate the protocol letter to anything available.
  15.  
  16. * Remember that this is a new product.  If you discover errors in the engine,
  17. notify CompuCom or Oklahoma Nochange directly.
  18.  
  19. - RECEIVE - RENAME TO PTRAN.BAT -
  20.  
  21. *
  22. * CompuCom SpeedModem Protocol for Oklahoma Nochange 7.6 - 8.0 BBS Systems
  23. * (C) Copyright 1991, Joe Adamson, Allied Information Services
  24. *
  25. * Notes:
  26. * ~~~~~~
  27. * It's assumed you've already initialized the protocol (see docs)
  28. * Receive files with CSP3 Protocol
  29. * &&V2 is the file being transferred
  30. *
  31.  
  32. :BLASTOFF
  33. @ECHO OFF
  34. IF &&V9.==-1. ECHO You cannot use this file transfer protocol in local mode.
  35. IF &&V9.==-1. GOTO :EXIT
  36. ECHO CSP-3 Protocol Transer now active ... >GATE&&NUMPORT
  37. CCSP -B&&BAUD -P&&NUMPORT -R &&V2
  38. ECHO DONE >NOCHDOS.DAT
  39. :EXIT
  40.  
  41. - TRANSMIT - RENAME TO PTRAN.BAT -
  42. *
  43. * CompuCom SpeedModem Protocol for Oklahoma Nochange 7.6 - 8.0 BBS Systems
  44. * (C) Copyright 1991, Joe Adamson, Allied Information Services
  45. *
  46. * Notes:
  47. * ~~~~~~
  48. * It's assumed you've alread initialized the protocol (see docs)
  49. * Send all files in \TEMPDOWN with CSP3 Protocol
  50. * &&V1 is "Y" or "N" if file(s) were compressed
  51. * &&V2 is the file being transferred
  52. *
  53.  
  54. :BLASTOFF
  55. @ECHO OFF
  56. IF &&V9.==-1. ECHO You cannot use this file transfer protocol in local mode.
  57. IF &&V9.==-1. GOTO EXIT
  58. ECHO CSP-3 Protocol transfer now active ... >GATE&&NUMPORT
  59. IF &&V1.==Y. GOTO SENDARC
  60. CCSP -B&&BAUD -P&&NUMPORT -T \TEMPDOWN\&&V2
  61. GOTO :DONE
  62.  
  63. :SENDARC
  64. CCSP -B&&BAUD -P&&NUMPORT -T &&V2
  65. GOTO :EXIT
  66.  
  67. :DONE
  68. ECHO DONE >NOCHDOS.DAT
  69. FOR %%M IN (\TEMPDOWN) DO ERASE %%M <\NOCHANGE\Y.DAT
  70. RD \TEMPDOWN
  71.  
  72. :EXIT
  73.  
  74.  * Origin: "Putting the world at your fingertips" 755-8188 (1:147/16.0)
  75.